Skip to main content

ReverseBytesOf

Type

statement

Summary

Reverse binary data

Syntax

reverse <Target>

Description

Reverses the order of bytes in the Target.

Parameters

NameTypeDescription

Target

A binary data string

Examples

variable tForward
put 5 random bytes into tForward

variable tReversed
put tForward into tReversed
reverse tReversed

expect that the first byte of tForward is the last byte of tReversed
expect that the last byte of tForward is the first byte of tReversed
Thank you for your feedback!

Was this page helpful?